home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_bas / oledsrvr.zip / REQUEST.CLS < prev    next >
Text File  |  1996-01-03  |  435b  |  28 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "CRequest"
  6. Attribute VB_Creatable = False
  7. Attribute VB_Exposed = True
  8. Option Explicit
  9.  
  10. Public ID As String
  11. Public Sub Notify(lngValue As Long)
  12.  
  13. frmClient.Label1 = "Return Value: " & lngValue
  14.  
  15.  
  16. End Sub
  17.  
  18.  
  19.  
  20. Private Sub Class_Initialize()
  21.  
  22.  
  23. '-----  Unique ID is created in Form Load from Now function.
  24. Me.ID = frmClient.mstrProgID
  25. End Sub
  26.  
  27.  
  28.